home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MATHS / PLPLOT / PLPLOT.ZIP / sys / amiga / cf / install.in < prev    next >
Encoding:
Text File  |  1994-08-23  |  1.5 KB  |  53 lines

  1. # -----------------------------------------------------------------------
  2. # $Id: install.in,v 1.2 1994/08/23 16:38:01 mjl Exp $
  3. #
  4. # Maurice LeBrun
  5. # IFS, University of Texas at Austin
  6. # 14-Jul-1994
  7. #
  8. # Make assignments and targets for installation on the Amiga.
  9. #
  10. # Under Unix I typically put plplot in
  11. # /usr/local/plplot, or $HOME/local/plplot if I cannot get a directory in
  12. # /usr/local assigned to me.
  13. #
  14. # On the Amiga, to keep things simple I also give PLplot it's own distribution
  15. # directory. This way everything stays together, but unfortunately you have
  16. # to modify your path and other settings to use it.  It'd be simple enough
  17. # to have it both ways if the Amiga OS /really/ supported softlinks, sigh.
  18. #
  19. # -----------------------------------------------------------------------
  20.  
  21. install: install_lib install_utils $(TCL_INSTALL) install_demos
  22.  
  23. install_lib:
  24.     -makedir $(INCLUDE_DIR) >NIL:
  25.     -makedir $(LIB_DIR) >NIL:
  26.     -makedir $(DOC_DIR) >NIL:
  27.     -makedir $(BIN_DIR) >NIL:
  28.     -makedir $(INFO_DIR) >NIL:
  29.     -copy /lib/#?        $(LIB_DIR)
  30.     -copy /README        $(DOC_DIR)
  31.     -copy /README.1st    $(DOC_DIR)
  32.     -copy /Changes.log    $(DOC_DIR)
  33.     -copy /COPYRIGHTS    $(DOC_DIR)
  34.     -copy /FAQ        $(DOC_DIR)
  35.     -copy /ToDo        $(DOC_DIR)
  36.     -copy /doc/#?.info    $(INFO_DIR)
  37.     -copy /include/#?.h    $(INCLUDE_DIR)
  38.  
  39. install_demos:
  40.     -makedir $(DEMOS_DIR) >NIL:
  41.     -makedir $(DEMOS_DIR)/C >NIL:
  42.     -copy Makedemo $(DEMOS_DIR)/C/Makefile
  43.     -copy /examples/C/#? $(DEMOS_DIR)/C
  44.  
  45. install_utils:
  46.     -copy plrender$E $(BIN_DIR)
  47.  
  48. install_tcl:
  49.     $(LDC) $(LDC_FLAGS) pltcl$O $(LIB_INSTALL) \
  50.         $(TO) pltcl$E $(LDC_LIBS)
  51.     -copy pltcl$E $(BIN_DIR)
  52.  
  53.